home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / tex-k / tex-k-archive.past / tex-k-archive.gz / tex-k-archive / 000609_fj@iesd.auc.dk_Wed May 25 22:12:37 1994.msg < prev    next >
Internet Message Format  |  1994-10-11  |  2KB

  1. Received: from iesd.auc.dk by cs.umb.edu with SMTP id AA28760
  2.   (5.65c/IDA-1.4.4 for <tex-k@cs.umb.edu>); Wed, 25 May 1994 14:13:47 -0400
  3. Received: from loke.iesd.auc.dk (fj@loke.iesd.auc.dk [130.225.48.20]) by iesd.auc.dk (8.6.5/8.6.5) with ESMTP id UAA22014; Wed, 25 May 1994 20:13:27 +0200
  4. From: Frank Jensen <fj@iesd.auc.dk>
  5. Received: from localhost (fj@localhost) by loke.iesd.auc.dk (8.6.5/8.6.5) id UAA01306; Wed, 25 May 1994 20:12:37 +0200
  6. Date: Wed, 25 May 1994 20:12:37 +0200
  7. Message-Id: <199405251812.UAA01306@loke.iesd.auc.dk>
  8. To: charnier@lirmm.fr
  9. Cc: pete@lovelace.thi.informatik.uni-frankfurt.de, tex-k@cs.umb.edu
  10. In-Reply-To: <199405251235.IAA01916@hpdif1.lirmm.fr> (charnier@lirmm.fr)
  11. Subject: Re: Xdvik-1.8 & MakeTeXPK
  12.  
  13. > MakeTeXPK called by xdvi-1.8 is 
  14. >    MakeTeXPK 328 300 magstep(0.5)
  15. >
  16. > but magstep(0.5)  = 1.2**0.5 = 1.0954451
  17. > and 300*1.0954451 = 328.63 rounded to 329
  18.  
  19. Often a font scaled magstep 0.5 is loaded by the command
  20.  
  21.     \font\myfont=cmr10 scaled 1095
  22.  
  23. which will load a font at 10.95pt; 300dpi scaled by 1.095 is 328.5dpi
  24. which apparently should be rounded to 329dpi.  But TeX uses integers
  25. internally, so this becomes 717619sp which is 0.2sp less than 10.95pt,
  26. so xdvi will ask for a 328.4999dpi (which rounds to 328dpi) font.
  27.  
  28. Apparently, xdvi has detected that the font is scaled magstep 0.5, but
  29. it still asks for a 328dpi font.  This is an inconsistent request (in
  30. other words: a bug in xdvi).  It should either have asked for 
  31.  
  32.     MakeTeXPK 328 300 328/300
  33.  
  34. or
  35.  
  36.     MakeTeXPK 329 300 magstep(0.5)
  37.  
  38. Once xdvi has decided that it wants a font scaled magstep 0.5, it
  39. should be no problem to figure out that this corresponds to a 329dpi
  40. font.
  41.  
  42. /Frank